home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / update-dictcommon-hunspell < prev    next >
Text File  |  2009-05-15  |  768b  |  43 lines

  1. #!/usr/bin/perl -w
  2.  
  3. use Debian::DictionariesCommon q(:all);
  4.  
  5. dico_checkroot ();
  6.  
  7. my $cachedir   = "/var/cache/dictionaries-common";
  8. my $class      = "hunspell";
  9. my %locales    = ();
  10.  
  11. updatedb ($class);
  12. build_emacsen_support ();
  13. build_squirrelmail_support ();
  14.  
  15.  
  16. __END__
  17.  
  18. =head1 NAME
  19.  
  20. update-dictcommon-hunspell - rebuild hunspell database and emacsen stuff
  21.  
  22. =head1 SYNOPSIS
  23.  
  24.  update-dictcommon-hunspell
  25.  
  26. =head1 DESCRIPTION
  27.  
  28. WARNING: Not to be used from the command line unless you know very well what you are doing.
  29.  
  30. This script, when called from hunspell dict package postinst or postrm will
  31. rebuild hunspell database as well as squirrelmail and emacsen stuff.
  32.  
  33. =head1 SEE ALSO
  34.  
  35. The dictionaries-common policy
  36.  
  37. =head1 AUTHORS
  38.  
  39. Rafael Laboissiere,
  40. Agustin Martin
  41.  
  42. =cut
  43.